public enum FilterType extends Enum<FilterType>
Enum Constant and Description |
---|
EDGE
an edge-filter
|
INTERSECTION
a filter intersection
|
NONE
No filter type associated
|
UNION
a filter union
|
VERTEX
a node-filter
|
Modifier and Type | Method and Description |
---|---|
EntityType |
getEntityType() |
static FilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final FilterType EDGE
public static final FilterType INTERSECTION
public static final FilterType NONE
public static final FilterType UNION
public static final FilterType VERTEX
public final EntityType getEntityType()
public static FilterType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static FilterType[] values()
for (FilterType c : FilterType.values()) System.out.println(c);
Copyright © 2015. All rights reserved.